home *** CD-ROM | disk | FTP | other *** search
/ CD School House 9 / CD School House 9.0 - Wayzata Technology (1994).iso / pc / dos / math / mafia2a / mathls.hlp < prev    next >
Text File  |  1992-10-01  |  2KB  |  65 lines

  1.  
  2.  ╔════════════════════════════════════════╗     (C) Copyright 1986-1990
  3.  ║ MATHLS.EXE - Math Least-Square program ║           Zvi Shippony
  4.  ╚════════════════════════════════════════╝          (818) 990-0134
  5.  
  6.   For options 1,2,4 - Enter any expression in the variable: X
  7.  
  8.   Expression is any legal combination of: +, -, *, /, **, !, (, )
  9.   and any of the following functions:
  10.  
  11.    ABS, INT, EXP, SIN, COS, TAN, COT, LOG, LN, FACT or ! (Factorial)
  12.    SQRT, SINH, COSH, TANH, ARCSIN, ARCCOS, ARCTAN, ARCSINH, ARCCOSH, ARCTANH
  13.  
  14.    And the "Special Functions" :
  15.  
  16.      Z(x)     { Riemann's Zeta function }
  17.      G(x)     { Gamma function, (IF x is an integer then x! = G(x+1)) }
  18.      BJ(n,x)  { Bessel Function of the  first kind, J(n,x) }
  19.      BY(n,x)  { Bessel Function of the second kind, Y(n,x) }
  20.      BI(n,x)  { Modified Bessel Function of the  first kind, I(n,x) }
  21.      BK(n,x)  { Modified Bessel Function of the second kind, K(n,x) }
  22.      SBJ(n,x) { Spherical Bessel Function of the  first kind, j(n,x) }
  23.      SBY(n,x) { Spherical Bessel Function of the second kind, y(n,x) }
  24.  
  25. $$$
  26.  
  27.  
  28.   Example (options 1,2,4): Sqrt(3.0**X+12.25)-Exp(-Sin(X+1.0))
  29.  
  30.   Example (options 1,2,4): X - Int(Tan(X)+4.123)!
  31.  
  32.  ** Note:
  33.     PI is a reserved name and will be interpeted as Pi = 3.14159265358...
  34.  
  35. $$$
  36.  
  37.   Options 3,5:
  38.  
  39.    To Plot or to compute Least Square Fit of tabulated data points, the file
  40.    containing the data must have the following format:
  41.  
  42.     Up to 2 Titles lines, followed by N sets, each set composed of any number
  43.     of variables, their names and values. One Name & value per line. For
  44.     example:
  45.  
  46.     First  Title for the data (Optional)
  47.     Second Title for the data (Optional)
  48.     X1, Y1(X1), Y2(X1), Y3(X1), ...
  49.     X2, Y1(X2), Y2(X2), Y3(X2), ...
  50.     X3, Y1(X3), Y2(X3), Y3(X3), ...
  51.     X4, Y1(X4), Y2(X4), Y3(X4), ...
  52.     . . . .
  53.     . . . .
  54.     Xn, Y1(Xn), Y2(Xn), Y3(Xn), ...
  55.  
  56. $$$
  57.  
  58.    You can plot Y1 vs. X  or:  Y2 vs. X  or: Y3 vs. X , etc.
  59.  
  60.    You can compute Least Square Fit of Y1 as a function of X or: Y2 as
  61.    a function of X etc.
  62.  
  63.  
  64.                             That's all folks ...
  65.